home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 031a / owlbwcc.zip / BWSPLASH.RC < prev    next >
Text File  |  1992-02-02  |  1KB  |  25 lines

  1. /*****************************************************************/
  2. /* BWSPLASH.RC defines a simple Borland Windows Custom Control   */
  3. /* Dialog Box that can be used as the main window.               */
  4. /* Notice the CLASS "BORDLG" to activate the metalic background  */
  5. /* Also notice the special "Borshade" Control.                   */
  6. /*****************************************************************/
  7.  
  8. #include "windows.h"
  9. #include "bwcc.h"
  10.  
  11. MAINWINDOWDIALOG DIALOG 13, 16, 162, 167
  12. CAPTION "BWCC Dialog Box"
  13. CLASS "BORDLG"
  14. STYLE WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX
  15. BEGIN
  16.     CONTROL "", 104, "BorShade", 1 | WS_CHILD | WS_VISIBLE, 6, 114, 150, 48
  17.     CTEXT "The Bitmap Associated with a button", -1, 12, 120, 138, 8, WS_CHILD | WS_VISIBLE | WS_GROUP
  18.     CTEXT "can be used as a splash screen ", -1, 12, 132, 138, 8, WS_CHILD | WS_VISIBLE | WS_GROUP
  19.     CTEXT "or a custom background.", -1, 12, 144, 138, 8, WS_CHILD | WS_VISIBLE | WS_GROUP
  20.     CONTROL "Button", 110, "BorBtn", BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 6, 6, 32, 20
  21. END
  22.  
  23. 1110 BITMAP splash.bmp
  24.  
  25.